home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap13 / dun13_2.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  419 b   |  23 lines

  1. <HTML>
  2. <TITLE>
  3. Dynamic HTML - Collections
  4. </TITLE>
  5.  
  6. <BODY>
  7. <H1>Dynamic HTML is Fun!</H1>
  8. Why?
  9. <UL ID=myTag>
  10.     <LI>Because of script interaction</LI>
  11.     <LI>Dynamic positioning and properties</LI>
  12.     <LI>It just is!</LI>
  13. </UL>
  14.  
  15. <SCRIPT LANGUAGE="VBScript">
  16. for l=0 to document.all.length
  17.     document.write document.all(l).tagName & "<BR>"
  18. next
  19. </SCRIPT>
  20.  
  21. </BODY>
  22. </HTML>
  23.